home *** CD-ROM | disk | FTP | other *** search
- global gSysPath, gSavePath, gfd, gWinSavePath, gmacSavePath
-
- on windowsSaveDialog
- gSavePath = FileSaveAsDialog(gWinSavePath, "How To Lose A Guy Images", "Save Images to what Location ?", 0)
- if gSavePath = EMPTY then
- go("Save")
- else
- the itemDelimiter = "\"
- z = the number of items in gSavePath
- put "How To Lose A Guy Images" into item z of gSavePath
- the itemDelimiter = ","
- save = the itemDelimiter
- end if
- end
-
- on macSAveDialog
- gSavePath = FileSaveAsDialog(gmacSavePath, "How To Lose A Guy Images", "Save Images to what Location ?")
- if gSavePath = EMPTY then
- go("Save")
- else
- the itemDelimiter = ":"
- z = the number of items in gSavePath
- put "How To Lose A Guy Images" into item z of gSavePath
- the itemDelimiter = ","
- save = the itemDelimiter
- end if
- end
-
- on exitFrame me
- if gfd = "\" then
- windowsSaveDialog()
- else
- macSAveDialog()
- end if
- end
-